GError **error)
{
gboolean ret = FALSE;
- OstreeRepoCheckoutOptions checkout_opts = { 0, };
+ OstreeRepoCheckoutAtOptions checkout_opts = { 0, };
const char *csum = ostree_deployment_get_csum (deployment);
g_autofree char *checkout_target_name = NULL;
g_autofree char *osdeploy_path = NULL;
if (!glnx_shutil_rm_rf_at (osdeploy_dfd, checkout_target_name, cancellable, error))
goto out;
- if (!ostree_repo_checkout_tree_at (repo, &checkout_opts, osdeploy_dfd,
- checkout_target_name, csum,
- cancellable, error))
+ if (!ostree_repo_checkout_at (repo, &checkout_opts, osdeploy_dfd,
+ checkout_target_name, csum,
+ cancellable, error))
goto out;
if (!glnx_opendirat (osdeploy_dfd, checkout_target_name, TRUE, &ret_fd, error))
/* This strange code structure is to preserve testing
* coverage of both `ostree_repo_checkout_tree` and
- * `ostree_repo_checkout_tree_at` until such time as we have a more
+ * `ostree_repo_checkout_at` until such time as we have a more
* convenient infrastructure for testing C APIs with data.
*/
if (opt_disable_cache || opt_whiteouts || opt_require_hardlinks)
{
- OstreeRepoCheckoutOptions options = { 0, };
+ OstreeRepoCheckoutAtOptions options = { 0, };
if (opt_user_mode)
options.mode = OSTREE_REPO_CHECKOUT_MODE_USER;
options.subpath = subpath;
options.no_copy_fallback = opt_require_hardlinks;
- if (!ostree_repo_checkout_tree_at (repo, &options,
- AT_FDCWD, destination,
- resolved_commit,
- cancellable, error))
+ if (!ostree_repo_checkout_at (repo, &options,
+ AT_FDCWD, destination,
+ resolved_commit,
+ cancellable, error))
goto out;
}
else